home *** CD-ROM | disk | FTP | other *** search
/ Practical Algorithms for Image Analysis / Practical Algorithms for Image Analysis.iso / CH_3.3 / BC / BC.H < prev    next >
Encoding:
C/C++ Source or Header  |  1999-09-11  |  428 b   |  28 lines

  1. /* 
  2.  * bc.h
  3.  * 
  4.  * Practical Algorithms for Image Analysis
  5.  * 
  6.  * Copyright (c) 1997, 1998, 1999 MLMSoftwareGroup, LLC
  7.  */
  8. #ifndef _BC_H_
  9. #define    _BC_H_
  10.  
  11.  
  12. #include <stdio.h>
  13. #include <stdlib.h>
  14. #include <math.h>
  15. #include <malloc.h>
  16.  
  17. #include "ip.h"
  18.  
  19. /*
  20.  * Function prototypes
  21.  */
  22. extern void main (int, char **);
  23. extern void usage (char *);
  24. extern void backgrd_correct (Image *, Image *, Image *, int, int);
  25.  
  26. #endif
  27. /*_BC_H_ */
  28.